*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: scroll; /* avoids second scrollbar flickering */
  scroll-behavior: smooth;
}

:root {
  --font-base: 1rem;
  --spacing: 1.5rem;
  --color-primary: #33ff33;
  --color-secondary: black;
  --font_bebas: "Bebas Neue", sans-serif;
  --font_inter: 'Inter', sans-serif;
}

.space {
  margin-top: 1rem;
  height: 2rem; /* or 1rem if you want tighter spacing */
}

.bold{
 font-weight: bold;
}

.large{
 font-size: 2.5rem; 

}

.site_wrapper {
  overflow-x: hidden;
}

.container_header_l1,
.container_section1_l1,
.container_section2_l1,
.container_section3_l1,
.container_footer_l1 {
  width: 100%;
}

/*Header */
.container_header_l1 {
  position: fixed;
  z-index: 1000;
  top: 0;
  height: 10vh;
  background: white;
  border-bottom: 2px solid var(--color-primary);
  background-color: var(--color-secondary);
}

.social_items {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
  justify-content: flex-start;
  margin-left: 15vw;
}


.header_button {
  background-color: var(--color-secondary); /* black */
  color: var(--color-primary); /* green text */
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center; /* center within flex container */
  text-transform: uppercase;
  text-decoration: none; /* removes underline */
  font-family: 'Inter', sans-serif;

}

.header_button:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.language_buttons {
  display: flex;
  background-color: var(--color-bg-dark);
  position: relative;
  width: 2rem;
  align-items: center;
}

.lang-btn {
  border: none;
  font-family: "Source Code Pro", monospace;
  color: var(--color-primary);
  background-color: var(--color-secondary);
  cursor: pointer;
  font-size: 1rem;
}

.divider {
  color: var(--color-primary);
  font-size: 1rem;
  padding: 0.5rem;
}



/*Overlay */
.container_overlay_l1 {
  position: absolute;
  z-index: 2000;
}

/*Section 1 */
.container_section1_l1 {
  position: relative;
  z-index: 100;
  height: 100vh;
  padding: 4rem 2rem;
  padding-top: 10vh;
  box-sizing: border-box;
  border-bottom: 2px solid var(--color-primary);
  background-image: url("../img/1000007028.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--font_bebas);
  overflow: hidden;
}

.container_section1_l1::before {
  content: "";
  position: absolute;
  z-index: 100;
  inset: 0;
  background-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
  pointer-events: none;
}

.container_section1_l2 {
  position: relative;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* or space-between */
  flex-wrap: wrap;
  gap: 0.5rem;
  height: 98%;
  width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  /*outline: 2px dashed red;*/
  overflow: hidden;
}

.hero_button {
  background-color: var(--color-secondary); /* black */
  color: var(--color-primary); /* green text */
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center; /* center within flex container */
  text-transform: uppercase;
  text-decoration: none; /* removes underline */
  font-family: 'Inter', sans-serif;

}

.hero_button:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}


/*Section 2 */
.container_section2_l1 {
  position: relative;
  z-index: 200;
  height: 100vh;
  box-sizing: border-box;
  padding-top: 10vh;
  padding-bottom: 5vh;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  overflow: hidden;
}

.container_section2_l2 {
  position: relative;
  z-index: 210;
  padding-top: 2rem;
  display: flex;
  flex-direction: row; /* ← ensures <p> tags stack vertically */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  font-size: 2rem;
  /*outline: 2px dashed red;*/
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.container_section2_l2_l,
.container_section2_l2_r {
  flex: 1 1;
}

.container_section2_l2_l {
  display: flex;
  flex-direction: column; /* ← ensures <p> tags stack vertically */
  gap: 1rem;
}

.last_123{
 padding-top:5rem;

}

.container_section2_l2_r {
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.container_section2_l2 p {
   padding: 0.5rem;
}

  .container_section2_l2 img {
    position: relative;
    width: 40%;
    height: auto;
    border-radius: 5px;
    display: block;
  }

/*Section 3 */
.container_section3_l1 {
  position: relative;
  z-index: 300;
  height: 100vh;
  padding: 4rem 2rem;
  box-sizing: border-box;
  background-image: url("../img/file_000000003d9c61f7afd9c27b8688afa3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: var(--font_bebas);

}

.container_section3_l1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
  z-index: 301;
  pointer-events: none;
    font-family: var(--font_bebas);
}

.container_section3_l2 {
  position: relative;
  z-index: 310;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* or space-between */
  flex-wrap: wrap;
  gap: 0.5rem;
  height: 105%;
  width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  font-family: var(--font_bebas);
  font-size: 2rem;
  font-weight: bold;
  /*outline: 2px dashed red;*/
  overflow: hidden;
}

.container_footer_l1 {
  position: relative;
  z-index: 400;
  height: 15vh;
  color:var(--color-primary);
  background-color: var(--color-secondary);
}

.container_footer_l2{
  position: relative;
  z-index: 410;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly; /* or space-between */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  height: 98%;
  width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  /*outline: 2px dashed red;*/
  font-family: var(--font_inter);

}

.footer_right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: 60%;
}

.container_footer_l2 a{
  text-decoration: none;
    color:var(--color-primary);
}

.container_header_l1 svg {
  fill: var(--color-primary);
  width: 2vw;
  height: 5vh;
}

.container_header_l1 a {
  text-decoration: none;
  margin: 0, 5rem;
  padding: 0, 5rem;
  font-family: system-ui, sans-serif;
  color: var(--color-primary);
}

.container_header_l1 img {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  filter: hue-rotate(90deg);
}

.main_impressum{
  color: var(--color-primary);
  background-color: var(--color-secondary);
  font-family: var(--font_inter);
}

.main_datenschutz{
  color: var(--color-primary);
  background-color: var(--color-secondary);
  font-family: var(--font_inter);
}



